Interface ICallGateProvider<T1, T2, T3, T4, T5, T6, TRet>
This class facilitates inter-plugin communication.
Assembly: Dalamud.dll
View Source
Declaration
public interface ICallGateProvider<T1, T2, T3, T4, T5, T6, TRet>
Methods
RegisterAction(Action<T1, T2, T3, T4, T5, T6>)
Registers an Action for inter-plugin communication.
View Source
Declaration
void RegisterAction(Action<T1, T2, T3, T4, T5, T6> action)
Parameters
Type | Name | Description |
---|---|---|
System.Action<<T1>,<T2>,<T3>,<T4>,<T5>,<T6>> | action | Action to register. |
RegisterFunc(Func<T1, T2, T3, T4, T5, T6, TRet>)
Registers a Func for inter-plugin communication.
View Source
Declaration
void RegisterFunc(Func<T1, T2, T3, T4, T5, T6, TRet> func)
Parameters
Type | Name | Description |
---|---|---|
System.Func<<T1>,<T2>,<T3>,<T4>,<T5>,<T6>,<TRet>> | func | Func to register. |
UnregisterAction()
Removes a registered Action from inter-plugin communication.
View Source
Declaration
void UnregisterAction()
UnregisterFunc()
Removes a registered Func from inter-plugin communication.
View Source
Declaration
void UnregisterFunc()
SendMessage(T1, T2, T3, T4, T5, T6)
Invoke all actions that have subscribed to this IPC.
View Source
Declaration
void SendMessage(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6)
Parameters
Type | Name |
---|---|
<T1> | arg1 |
<T2> | arg2 |
<T3> | arg3 |
<T4> | arg4 |
<T5> | arg5 |
<T6> | arg6 |